




HTML Entities
HTML character entities are used as a replacement of reserved characters in HTML. You can also replace characters that are not present on your keyboard by entities. 
These characters are replaced because some characters are reserved in HTML. HTML entities provide a wide range of characters which can allow you to add icons, geometric shapes, mathematical operators, etc.
For example: if you use less than (<) or greater than (>) symbols in your text, the browser can mix them with tags that's why character entities are used in HTML to display reserved characters.
How to use an entity:
You can use an entity in your HTML document by name or by a numerical character reference. Each entity starts with symbol ampersand (&) and ends with a semicolon (;).
Syntax:


&entity_name;

  OR

entity_number;


Most used HTML Character Entities


Result
Description
Entity Name
Entity Number


 
non-breaking space
&nbsp;
160


<
less than
&lt;
60


>
greater than
&gt;
62


&
ampersand
&amp;
38


"
double quotation mark
&quot;
34


'
single quotation mark (apostrophe)
&apos;
39


¢
cent
&cent;
162


£
pound
&pound;
163


¥
yen
&yen;
165


€
Euro
&euro;
8364


©
copyright
&copy;
169


®
registered trademark
&reg;
174


Note:Entity names are case sensitive.
Advantage of entity name: An entity name is easy to remember.
Disadvantage of entity name: Browsers may not support all entity names, but the support for numbers is good.

Example:


<!DOCTYPE html>

<html>

<head>

<title></title>

</head>

 <body>

    <h3>HTML entity example</h3>

    <p> "This is the content written within entity"</p>

    <p>  Paragraph tag </p>

 </body>

</html>



Diacritical Marks in HTML 
There are some special types of letters used in HTML whichhave some glyph added to the top or below the letters. These glyphs are called diacritical mark.
Some diacritical marks, like grave (    ̀) and acute (    ́) are called accents.Diacritical marks can be used both above and below a letter, inside a letter, and between two letters.
Following is a list of some diacritical marks:


Mark
Character
Construct
Result


 ̀
a
a&#768;
à


 ́
a
a&#769;
á


̂
a
a&#770;
â


 ̃
a
a&#771;
ã


 ̀
O
O&#768;
Ò


 ́
O
O&#769;
Ó


̂
O
O&#770;
Ô


 ̃
O
O&#771;
Õ
















Please Share





